VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging Namespace / PixelManipulator Class / WriteRowDataUnsafe Methods / WriteRowDataUnsafe(Int32,Int32,Byte[],Int32,Int32) Method
Syntax Requirements SeeAlso
In This Topic
    WriteRowDataUnsafe(Int32,Int32,Byte[],Int32,Int32) Method (PixelManipulator)
    In This Topic
    Writes the part of row data without check of parameters for correct values.
    Syntax
    'Declaration
    
    Public Overloads Sub WriteRowDataUnsafe( _
    ByVal row
    Row index.
    As System.Int32, _
    ByVal offsetInRow
    Offset in row.
    As System.Int32, _
    ByVal rowData
    The buffer to read data from.
    () As Byte, _
    ByVal offsetInRowData
    The starting point in the buffer at which to begin reading row data.
    As System.Int32, _
    ByVal length
    Length of data to write.
    As System.Int32 _
    )
    public void WriteRowDataUnsafe(
    System.Int32 row,
    System.Int32 offsetInRow,
    byte[] rowData,
    System.Int32 offsetInRowData,
    System.Int32 length
    )
    public: void WriteRowDataUnsafe(
    System.Int32 row,
    System.Int32 offsetInRow,
    byte[]* rowData,
    System.Int32 offsetInRowData,
    System.Int32 length
    )
    public:
    void WriteRowDataUnsafe(
    System.Int32 row,
    System.Int32 offsetInRow,
    array<byte>^ rowData,
    System.Int32 offsetInRowData,
    System.Int32 length
    )

    Parameters

    row
    Row index.
    offsetInRow
    Offset in row.
    rowData
    The buffer to read data from.
    offsetInRowData
    The starting point in the buffer at which to begin reading row data.
    length
    Length of data to write.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also